103a4e25bd2e922941bf6006658ddfa120dbddbf,modules/portal/portal-servlet-jsp-compiler/src/main/java/com/liferay/portal/servlet/jsp/compiler/internal/JspClassResolver.java,JspClassResolver,resolveClasses,#BundleWiring#String#number#,94

Before Change


	public Collection<String> resolveClasses(
		BundleWiring bundleWiring, String path, int options) {

		Collection<String> resources = null;

		Bundle bundle = bundleWiring.getBundle();

		if (bundle.equals(_bundle) || bundle.equals(_jspBundle)) {
			resources = bundleWiring.listResources(path, "*.class", options);
		}
		else if (isExportsPackage(bundleWiring, path.replace('/', '.'))) {
			if (bundle.getBundleId() == 0) {
				resources = handleSystemBundle(bundleWiring, path);
			}
			else {
				resources = bundleWiring.listResources(
					path, "*.class", options);
			}
		}

		return resources;
	}

	protected String decodePath(String path) {

After Change


		}

		if (bundle.getBundleId() == 0) {
			return handleSystemBundle(bundleWiring, path);
		}

		return toJavaFileObjects(